home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH01 / PACKDATA / PACKEDU.DFM / PACKEDU.txt
Encoding:
Text File  |  1995-11-05  |  4.4 KB  |  209 lines

  1. object PackedData: TPackedData
  2.   Left = 291
  3.   Top = 103
  4.   BorderStyle = bsDialog
  5.   Caption = 'Packed Data'
  6.   ClientHeight = 223
  7.   ClientWidth = 463
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   TextHeight = 16
  14.   object BoundingBox: TGroupBox
  15.     Left = 0
  16.     Top = 0
  17.     Width = 457
  18.     Height = 217
  19.     Caption = 'Packed Data (Date Example from Chapter One)'
  20.     TabOrder = 0
  21.     OnClick = BoundingBoxClick
  22.     object MonthLbl: TLabel
  23.       Left = 168
  24.       Top = 32
  25.       Width = 40
  26.       Height = 16
  27.       Caption = 'Month'
  28.     end
  29.     object DayLbl: TLabel
  30.       Left = 256
  31.       Top = 32
  32.       Width = 26
  33.       Height = 16
  34.       Caption = 'Day'
  35.     end
  36.     object YearLbl: TLabel
  37.       Left = 352
  38.       Top = 32
  39.       Width = 31
  40.       Height = 16
  41.       Caption = 'Year'
  42.     end
  43.     object DataPackLbl: TLabel
  44.       Left = 8
  45.       Top = 80
  46.       Width = 89
  47.       Height = 16
  48.       Caption = 'Data To Pack:'
  49.     end
  50.     object DecimalLbl: TLabel
  51.       Left = 104
  52.       Top = 56
  53.       Width = 57
  54.       Height = 16
  55.       Caption = 'Decimal:'
  56.     end
  57.     object BinaryLbl: TLabel
  58.       Left = 112
  59.       Top = 96
  60.       Width = 47
  61.       Height = 16
  62.       Caption = 'Binary:'
  63.     end
  64.     object PackResLbl: TLabel
  65.       Left = 16
  66.       Top = 144
  67.       Width = 97
  68.       Height = 16
  69.       Caption = 'Packed Result:'
  70.     end
  71.     object MonthBin: TEdit
  72.       Left = 168
  73.       Top = 89
  74.       Width = 49
  75.       Height = 24
  76.       Hint = 'Enter a binary value between 0001 and 1100 here.'
  77.       Font.Color = clBlack
  78.       Font.Height = -13
  79.       Font.Name = 'System'
  80.       Font.Style = [fsBold]
  81.       MaxLength = 4
  82.       ParentFont = False
  83.       ParentShowHint = False
  84.       ShowHint = True
  85.       TabOrder = 0
  86.       Text = '0001'
  87.       OnKeyUp = MonthBinKeyUp
  88.     end
  89.     object ExitBtn: TButton
  90.       Left = 384
  91.       Top = 184
  92.       Width = 65
  93.       Height = 25
  94.       Caption = 'Quit'
  95.       TabOrder = 1
  96.       OnClick = ExitBtnClick
  97.     end
  98.     object AboutBtn: TButton
  99.       Left = 8
  100.       Top = 184
  101.       Width = 65
  102.       Height = 25
  103.       Caption = 'About'
  104.       TabOrder = 2
  105.       OnClick = AboutBtnClick
  106.     end
  107.     object DayBin: TEdit
  108.       Left = 248
  109.       Top = 89
  110.       Width = 57
  111.       Height = 24
  112.       Hint = 'Enter a binary value between 0 and 31 here.'
  113.       Font.Color = clBlack
  114.       Font.Height = -13
  115.       Font.Name = 'System'
  116.       Font.Style = [fsBold]
  117.       MaxLength = 6
  118.       ParentFont = False
  119.       ParentShowHint = False
  120.       ShowHint = True
  121.       TabOrder = 3
  122.       Text = '0 0001'
  123.       OnKeyUp = DayBinKeyUp
  124.     end
  125.     object YearBin: TEdit
  126.       Left = 344
  127.       Top = 89
  128.       Width = 73
  129.       Height = 24
  130.       Hint = 'Enter a binary value between 0 and 99 here.'
  131.       Font.Color = clBlack
  132.       Font.Height = -13
  133.       Font.Name = 'System'
  134.       Font.Style = [fsBold]
  135.       MaxLength = 8
  136.       ParentFont = False
  137.       ParentShowHint = False
  138.       ShowHint = True
  139.       TabOrder = 4
  140.       Text = '110 0000'
  141.       OnKeyUp = YearBinKeyUp
  142.     end
  143.     object MonthDec: TEdit
  144.       Left = 168
  145.       Top = 56
  146.       Width = 49
  147.       Height = 24
  148.       Hint = 'Enter a decimal number between 1 & 12 here.'
  149.       MaxLength = 2
  150.       ParentShowHint = False
  151.       ShowHint = True
  152.       TabOrder = 5
  153.       Text = '1'
  154.       OnKeyUp = MonthDecKeyUp
  155.     end
  156.     object DayDec: TEdit
  157.       Left = 248
  158.       Top = 56
  159.       Width = 57
  160.       Height = 24
  161.       Hint = 'Enter a decimal number between 1 & 31 here.'
  162.       MaxLength = 2
  163.       ParentShowHint = False
  164.       ShowHint = True
  165.       TabOrder = 6
  166.       Text = '1'
  167.       OnKeyUp = DayDecKeyUp
  168.     end
  169.     object YearDec: TEdit
  170.       Left = 344
  171.       Top = 56
  172.       Width = 73
  173.       Height = 24
  174.       Hint = 'Enter a decimal number between 0 and 99 here.'
  175.       MaxLength = 2
  176.       ParentShowHint = False
  177.       ShowHint = True
  178.       TabOrder = 7
  179.       Text = '96'
  180.       OnKeyUp = YearDecKeyUp
  181.     end
  182.     object Panel1: TPanel
  183.       Left = 160
  184.       Top = 128
  185.       Width = 265
  186.       Height = 49
  187.       TabOrder = 8
  188.       object BinResult: TLabel
  189.         Left = 16
  190.         Top = 17
  191.         Width = 137
  192.         Height = 16
  193.         Caption = 'BinResult'
  194.         Color = clWhite
  195.         ParentColor = False
  196.       end
  197.       object HexResult: TLabel
  198.         Left = 189
  199.         Top = 17
  200.         Width = 68
  201.         Height = 16
  202.         Caption = 'HexResult'
  203.         Color = clWhite
  204.         ParentColor = False
  205.       end
  206.     end
  207.   end
  208. end
  209.